Skip to main content

pgHilitedText

Type

property

Summary

Get or set the text corresponding to the highlighted rows.

Syntax

set the pgHilitedText of widget to <Text>
get the pgHilitedText of widget

Description

Use the pgHilitedText property to get or set the text of the selected rows.

Examples

on mouseUp
local tText

put "user-1" & tab & "user1@email.com" into line 1 of tText
put "user-2" & tab & "user2@email.com" into line 2 of tText

set the pgHilitedText of widget"PolyGrid" to tText
end mouseUp